home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Trial / Camtasia 6 / camtasia.msi / Cabs.w1.cab / WMSeek.js < prev    next >
Text File  |  2008-10-10  |  476b  |  19 lines

  1. function SeekTime( Time )
  2. {
  3.    if( document.mediaPlayer == undefined || document.mediaPlayer == null )
  4.    {
  5.       return;
  6.    }
  7.    
  8.    if (navigator.appName == "Netscape" && !window.GeckoActiveXObject ) 
  9.    {
  10.       document.mediaPlayer.getControls().setCurrentPosition( Time );
  11.       document.mediaPlayer.getControls().Play();
  12.    } 
  13.    else 
  14.    {
  15.       document.mediaPlayer.controls.currentPosition = Time;
  16.       document.mediaPlayer.controls.play();
  17.    }    
  18. }
  19.